home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / tex-k-archive.past / tex-k-archive.gz / tex-k-archive / 000089_pnoma@wk.estec.esa.nl_Thu Nov 18 11:51:16 1993.msg < prev    next >
Internet Message Format  |  1994-10-11  |  2KB

  1. Received: from estgtw.estec.esa.nl by cs.umb.edu with SMTP id AA26847
  2.   (5.65c/IDA-1.4.4 for <tex-k@cs.umb.edu>); Thu, 18 Nov 1993 05:05:41 -0500
  3. Received: by estgtw.estec.esa.nl (5.57/Ultrix3.0-C)
  4.     id AA20862; Thu, 18 Nov 93 10:51:12 +0100
  5. Received: from estwkl.estwk (estwkl.estec.esa.nl) by wk.estec.esa.nl (4.1/SMI-4.1)
  6.     id AA01954; Thu, 18 Nov 93 10:51:16 +0100
  7. Date: Thu, 18 Nov 93 10:51:16 +0100
  8. From: pnoma@wk.estec.esa.nl (Per Norman Oma)
  9. Message-Id: <9311180951.AA01954@wk.estec.esa.nl>
  10. Received: by estwkl.estwk (4.1/SMI-4.1)
  11.     id AA29507; Thu, 18 Nov 93 10:51:06 +0100
  12. To: tex-k@cs.umb.edu
  13. Subject: Small bug in dvipsk/resident.c
  14.  
  15. dvipsk-5.521a
  16.  
  17. File: resident.c
  18.  
  19. The end of the file reads:
  20.  
  21.    } else {
  22.       configpath
  23.         = kpse_init_path (NULL, DEFAULT_CONFIG_PATH, "TEXCONFIG", NULL) ;
  24. #ifdef DEBUG
  25.       if (dd (D_PATHS))
  26.         {
  27.           print_path ("config", configpath);
  28.         }
  29.    }
  30. #endif
  31. }
  32.  
  33. This give problem (parse error) when compiling with -DNO_DEBUG
  34.  
  35. Moving the second last end-brace (matching the else) after the #endif 
  36. as shown below fix the problem:
  37.  
  38.    } else {
  39.       configpath
  40.         = kpse_init_path (NULL, DEFAULT_CONFIG_PATH, "TEXCONFIG", NULL) ;
  41. #ifdef DEBUG
  42.       if (dd (D_PATHS))
  43.         {
  44.           print_path ("config", configpath);
  45.         }
  46. #endif
  47.    }
  48. }
  49.  
  50. Per Norman Oma                E-mail:    pnoma@wk.estec.esa.nl
  51. Stagiaire at ESTEC/WKA            Phone:    +31 1719 85298
  52. Noordwijk, The Netherlands        Fax:    +31 1719 85432
  53.  
  54.